google.golang.org/grpc/internal/transport.Stream.fc (field)

14 uses

	google.golang.org/grpc/internal/transport (current package)
		http2_client.go#L864: 		s.fc = inFlow{limit: uint32(t.initialWindowSize)}
		http2_client.go#L1152: 	if w := s.fc.maybeAdjust(n); w > 0 {
		http2_client.go#L1161: 	if w := s.fc.onRead(n); w > 0 {
		http2_client.go#L1174: 			s.fc.newLimit(n)
		http2_client.go#L1230: 		if err := s.fc.onData(size); err != nil {
		http2_client.go#L1242: 			if w := s.fc.onRead(size); w > 0 {
		http2_client.go#L1253: 			if w := s.fc.onRead(size - uint32(dataLen)); w > 0 {
		http2_server.go#L405: 			fc: inFlow{limit: uint32(t.initialWindowSize)},
		http2_server.go#L723: 	if w := s.fc.maybeAdjust(n); w > 0 {
		http2_server.go#L733: 	if w := s.fc.onRead(n); w > 0 {
		http2_server.go#L746: 		s.fc.newLimit(n)
		http2_server.go#L806: 		if err := s.fc.onData(size); err != nil {
		http2_server.go#L812: 			if w := s.fc.onRead(size - uint32(dataLen)); w > 0 {
		transport.go#L313: 	fc       inFlow